home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-04-29 | 1.8 KB | 60 lines | [TEXT/ttxt] |
- UNITS 1.0
-
- This program allows easy conversion from one unit of measure to another.
- It is easily expandable up to 1000 different units of measure. Many
- units (and their abreviations) are already entered into the UNITS.TXT file.
- There are three files that make up the utility.They are UNITS (the program),
- UNITS.TXT (the text data) and UNITS.DAT (the compiled data). They must all
- reside in the same folder.
-
- Here is an example of how to use the program:
-
- (reading pre-compiled units table from "UNITS.DAT")
- 678 units
- You have: floz
- You want: liters
- * 0.295729
- / 3.38147
- You have:
-
- When the program is run it will read in all the units it understands
- from a data file. It will then prompt you for the unit to be converted and
- also for the unit you would like to have a conversion to.
- The output in the above example is really:
-
- 1 floz * 0.295729 = 0.295729 liters
-
- or
-
- 1 floz / 3.38147 = 0.295729 liters
-
- Normally the data is read from the UNITS.DAT file. If you do not have a
- UNITS.DAT file the program will look for the UNITS.TXT file. This file
- contains a text representation of the units to convert. If the UNITS.TXT
- file is found, the program will compile it into a new UNITS.DAT file.
-
- Adding more units to the program:
-
- To add more units to the program delete the UNITS.DAT file and enter the
- new data into the UNITS.TXT file. Run UNITS and the program will build
- the new UNITS.DAT file. An example of items that could be added are
- world money value conversions. An example:
-
- dollar dollar
- $ dollar
- ยข 0.01 dollar
- cent 0.01 dollar
-
- could be added to UNITS.TXT. Now the program will know how to convert
- from dollars to cents using both the symbol and the name. This could just as
- easily be done with other currency.
-
- This program was ported by:
-
- Charles E. Bess
- 587 North 480 West
- Kokomo, IN. 46901
-
- using the Lightspeed C compiler.
-
-